phy_linear_damping

Gets or sets the linear damping of an instance.

语法:

phy_linear_damping;


返回: Real(实数)


描述

This variable can be used to set the linear damping of the instance, or it can be used to get the current linear damping. The damping is the amount of "resistance" to forward movement that the physics enabled instance has, with a lower value permitting the instance to move and accelerate faster and a higher value making it require a more forceful push.


例如:

if place_meeting(phy_position_x, phy_position_y, obj_Water)
   {
   phy_linear_damping = 10;
   }
else
   {
   phy_linear_damping = 3;
   }

The above code will check for a collision between the calling instance and instances of "obj_Water" and change the linear damping accordingly.


上一页: Physics Variables
next: phy_speed_x
© Copyright YoYo Games Ltd. 2018 All Rights Reserved